home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / powerb5.zip / P5WPR000.TIP < prev    next >
Text File  |  1993-06-01  |  1KB  |  41 lines

  1. As do many printers, my HP DeskJet 500 stacks printed pages
  2. right side up. Thus, when it finishes printing a 30-page
  3. draft in WordPerfect 5.1, for instance, the last page is on
  4. top, and the entire stack has to be re-sorted to place the
  5. pages in the correct order.
  6.  
  7. I realized that if I could print the document backward,
  8. starting with the last page and ending with the first, the
  9. resulting output would be in the right order. I therefore
  10. wrote a WordPerfect macro, REVPRINT (for REVerse PRINT) to
  11. do just that. REVPRINT goes to the bottom of the document,
  12. prints that page, and then alternates between paging up and
  13. printing the current page until it reaches page 1. REVPRINT
  14. doesn't need to know in advance how many pages the document
  15. contains.
  16.  
  17. Jerry L. Stern
  18. Baltimore, Maryland
  19.  
  20. Editor's Note: Mr. Stern's macro, which we printed in the
  21. January 1992 *.* column, works well on most documents.
  22. However, it can fail if your document has a table of
  23. contents. See the tip "Printing Backward Even Better" for a
  24. macro, based on Mr. Stern's, that solves this problem. For
  25. reference, here's the text of the original macro:
  26.  
  27. {DISPLAY OFF}
  28. {Home}{Home}{Down}
  29. {WHILE}{SYSTEM}page~>l~
  30. {Print}2{Page Up}
  31. {END WHILE}
  32. {Print}2
  33.  
  34.  
  35. Title: Run Your Printer Backward
  36. Category: WPR
  37. Issue Date: January, 1992
  38. Editor: Brett Glass
  39. Supplementary Files: None
  40. Filename: P5WPR000.TIP
  41.